home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / prolog / brklyprl.lha / Emulator / Tests / Passed / test26.pl < prev    next >
Encoding:
Text File  |  1989-04-14  |  134 b   |  10 lines

  1.  
  2. /* Copyright (C) 1988, 1989 Herve' Touati, Aquarius Project, UC Berkeley */
  3.  
  4. main :- a(b).
  5.  
  6. a(a).
  7. a(c).
  8. a(b) :- write(ok), nl.
  9. a(d).
  10.